projects
/
gpsbabel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e65cc8
)
add missing Qt libs for gui on linux.
author
tsteven4
<tsteven4@gmail.com>
Fri, 1 Dec 2017 00:38:28 +0000
(17:38 -0700)
committer
tsteven4
<tsteven4@gmail.com>
Fri, 1 Dec 2017 00:38:28 +0000
(17:38 -0700)
The required plugin platforms/libqxcb.so needs
libQt5DBus and libQt5XcbQpa.
gui/makelinuxdist.sh.in
patch
|
blob
|
history
diff --git
a/gui/makelinuxdist.sh.in
b/gui/makelinuxdist.sh.in
index 72707f7a02a133ac46d90465a5f7fa963bc6fd68..983de11acc4449a4833f8e5eb0c950ec417adc3d 100644
(file)
--- a/
gui/makelinuxdist.sh.in
+++ b/
gui/makelinuxdist.sh.in
@@
-11,7
+11,8
@@
mkdir $DISTDIR/plugins
mkdir $DISTDIR/translations
mkdir $DISTDIR/help
-QT_LIBS=`ldd objects/gpsbabelfe-bin | grep libQt | awk '{print $3}'`
+QT_LIBS="`ldd objects/gpsbabelfe-bin | grep libQt | awk '{print $3}'`"
+QT_LIBS="$QT_LIBS `ldd $QT_INSTALL_PLUGINS/platforms/libqxcb.so | grep libQt | awk '{print $3}'`"
for lib in $QT_LIBS
do
cp $lib $DISTDIR